home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
m
/
maxonc++2.dms
/
maxonc++2.adf
/
MCPIncl.lha
/
clib
/
macros.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-26
|
378b
|
20 lines
#ifndef CLIB_MACROS_H
#define CLIB_MACROS_H
/*
** $Filename: clib/macros.h $
** $Release: 2.04 $
** $Revision: 36.0 $
** $Date: 90/11/30 $
**
** C prototypes
**
** (C) Copyright 1990 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(x) ((x<0)?(-(x)):(x))
#endif /* CLIB_MACROS_H */